home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / com_stat.c < prev    next >
C/C++ Source or Header  |  1987-05-06  |  202b  |  13 lines

  1. #include <dos.h>
  2.  
  3. int com_stat( port ) int port;
  4. {
  5.     union REGS regs;
  6.     
  7.     regs.x.dx = port;
  8.     regs.h.ah = 0x3;
  9.     int86( 0x14, ®s, ®s );
  10.     
  11.     return( (int)regs.x.ax );
  12. }
  13.